home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 21
/
Cream of the Crop 21 (Terry Blount) (October 1996).iso
/
program
/
srcbkvt.zip
/
LISTBOX.ZIP
/
TEST.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-11-30
|
782b
|
46 lines
{
* Unit Name: test.pas
* Author: William Stamatakis
* Created: 11 '95
*
* Note: Sample App Form (TForm1)
}
unit test;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, TBillist, Listdlg;
type
TForm1 = class(TForm)
BillListBox1: TBillListBox;
btnSearchDlg: TButton;
btnSearch: TButton;
procedure btnSearchClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.btnSearchClick(Sender: TObject);
begin
if (Sender = btnSearchDlg) then
BillListBox1.FindItemDlg('')
else
BillListBox1.SearchList('A');
end;
end.